home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / zendisk2 / lst12-2.asm < prev    next >
Assembly Source File  |  1990-02-15  |  273b  |  14 lines

  1. ;
  2. ; *** Listing 12-2 ***
  3. ;
  4. ; Measures the performance of IMUL when used to calculate
  5. ; the 32-bit product of two 16-bit factors each with a value
  6. ; of zero.
  7. ;
  8.     sub    ax,ax    ;we'll multiply zero times zero
  9.     call    ZTimerOn
  10.     rept    1000
  11.     imul    ax
  12.     endm
  13.     call    ZTimerOff
  14.